home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmHelp
- Caption = "VC Formula One Golf Help Information"
- ClientHeight = 5190
- ClientLeft = 2325
- ClientTop = 2160
- ClientWidth = 6615
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 5190
- ScaleWidth = 6615
- Begin VB.TextBox Text1
- Height = 4935
- Left = 120
- MultiLine = -1 'True
- ScrollBars = 2 'Vertical
- TabIndex = 0
- Top = 120
- Width = 6375
- End
- Attribute VB_Name = "frmHelp"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Form_Load()
- Dim sPathName$
- On Error GoTo NoOpen
- sPathName = App.Path & "\golf.txt"
- Open sPathName For Input As 1
- Text1.Text = Input$(LOF(1), 1)
- Close 1
- Exit Sub
- NoOpen:
- MsgBox "Could not open 'Golf.txt'. Please verify this file is in the same path as the application.", vbOKOnly
- End Sub
-